地圖嵌入網頁- Google My Map


Posted by mijouhsieh on 2023-06-29

Google My Map

透過 Google My Map 搜尋店家加入清單,
...選單 / 嵌入我的網站 / 顯示 <iframe src="...." width="..." height="..."> <iframe>
可調整寬高,但呈現在網頁上的黑色navigation好像無法去除。
地圖樣式只有9種選項。
快速方便但無法客制化調整。

Laptop-Friendly Cafes in London: Map
googlemap-file.png
googleMyMap-code.png


https://www.mapbox.com/install/

Install the Maps SDK: Web / CDN / Include the GL JS files / Add the map to your site

Add the map to your site

<div id='map' style='width: 400px; height: 300px;'></div>
<script>
  mapboxgl.accessToken = 'YOUR_MAPBOX_ACCESS_TOKEN';
  var map = new mapboxgl.Map({
    container: 'map',
    style: 'mapbox://styles/mapbox/streets-v11'
  });
</script>

'YOUR_MAPBOX_ACCESS_TOKEN' => 試用 Default public token










Related Posts

AI輔導室|製作圓形漢字印鑑效果

AI輔導室|製作圓形漢字印鑑效果

D3v4 工作坊 - 製作 D3 plugin 來繪製草圖風格長條圖

D3v4 工作坊 - 製作 D3 plugin 來繪製草圖風格長條圖

掌握產品及團隊的現況

掌握產品及團隊的現況


Comments